home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SecalDemo / Inc / prefs / pointer.inc < prev    next >
Encoding:
Text File  |  1997-06-11  |  355 b   |  24 lines

  1. include "inc/exec/types.inc";
  2. include "inc/libraries/iffparse.inc";
  3.  
  4. struct PointerPrefs is
  5.   pp_Reserved[4]:ulong;
  6.   pp_Which:uword;
  7.   pp_Size:uword;
  8.   pp_Width:uword;
  9.   pp_Height:uword;
  10.   pp_Depth:uword;
  11.   pp_YSize:uword;
  12.   pp_X,pp_Y:uword;
  13. ;
  14.  
  15. def WBP_NORMAL = 0;
  16. def WBP_BUSY = 1;
  17.  
  18. struct RGBTable is
  19.   t_Red:ubyte;
  20.   t_Green:ubyte;
  21.   t_Blue:ubyte;
  22. ;
  23.  
  24.